home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _2ABC1AF9910542549CF4F1CF6CDE63BD < prev    next >
Encoding:
Text File  |  2006-08-04  |  788 b   |  30 lines

  1.  
  2. from PSPApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Corel Corporation',
  7.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  8.         'Description': 'Factory default preset for PageCurl effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_PageCurl():
  14.     return {
  15.         'Width': 80,
  16.         'Radius': 40,
  17.         'BackgroundColor': (128, 128, 128),
  18.         'CurlColor': (255, 255, 255),
  19.         'GeneralSettings': {
  20.             'AutoActionMode': 0,
  21.             'ExecutionMode': 0
  22.             },
  23.         'Corner': 2,
  24.         'EdgeMode': 2,
  25.         'Height': 60
  26.         }
  27.  
  28. def Do(Environment):
  29.     App.Do( Environment, 'PageCurl', Preset_PageCurl())
  30.